home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 22 / AACD 22.iso / AACD / Programming / powerd / lib / powerd.lha / powerd_ppc / Abs.ass next >
Encoding:
Text File  |  1980-07-11  |  168 b   |  15 lines

  1.  
  2. # Abs(r3:LONG)(r3:LONG)
  3.  
  4.     .text
  5.     .global    _Abs
  6.  
  7. _Abs:    mr.    r3,r3        # tstw r3
  8.     bge    end
  9.     neg    r3,r3        # negate
  10. end:    blr
  11.  
  12.     .local    end
  13.     .type    _Abs,@function
  14.     .size    _Abs,$-_Abs
  15.